home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
screen
/
scrtst
/
frmabout.frm
next >
Wrap
Text File
|
1995-01-24
|
2KB
|
76 lines
VERSION 2.00
Begin Form frmAbout
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Double
Caption = "About Screen Tester"
ClientHeight = 2055
ClientLeft = 5055
ClientTop = 7035
ClientWidth = 4365
Height = 2460
Left = 4995
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2055
ScaleWidth = 4365
Top = 6690
Width = 4485
Begin CommandButton cmdOK
BackColor = &H00C0C0C0&
Cancel = -1 'True
Caption = "&Ok"
Default = -1 'True
Height = 375
Left = 1605
TabIndex = 1
Top = 1500
Width = 1155
End
Begin Label lblAbout
Alignment = 2 'Center
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00800000&
Height = 1155
Left = 840
TabIndex = 0
Top = 120
Width = 3315
End
Begin Shape shpShadow
BackColor = &H00808080&
BackStyle = 1 'Opaque
Height = 1155
Left = 900
Top = 180
Width = 3315
End
Begin Image imgIcon
Height = 480
Left = 120
Picture = FRMABOUT.FRX:0000
Top = 120
Width = 480
End
End
Option Explicit
Sub cmdOK_Click ()
Unload Me
End Sub
Sub Form_Load ()
SetDialogMenu Me
PlaceDialog frmMain, Me, DLG_CENTERED
lblAbout.Caption = "Screen Tester" & Chr$(13) & Chr$(10) & "Version 2.0 (1/24/95)" & Chr$(13) & Chr$(10) & "Copyright 1995 J. Frank Carr" & Chr$(13) & Chr$(10) & "All Rights Reserved"
imgIcon.Picture = frmMain.Icon
End Sub